home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / automake-1.8 / Automake / Config.pm < prev    next >
Encoding:
Perl POD Document  |  2005-10-16  |  1.7 KB  |  55 lines

  1. # Copyright (C) 2003  Free Software Foundation, Inc.      -*- Perl -*-
  2. # Generated from Config.in; do not edit by hand.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  17. # 02111-1307, USA.
  18.  
  19. package Automake::Config;
  20. use strict;
  21.  
  22. require Exporter;
  23. use vars qw (@ISA @EXPORT);
  24.  
  25. @ISA = qw (Exporter);
  26. @EXPORT = qw ($APIVERSION $PACKAGE $VERSION $libdir);
  27.  
  28. use vars qw ($APIVERSION $PACKAGE $VERSION $libdir);
  29.  
  30. # Parameters set by configure.  Not to be changed.  NOTE: assign
  31. # VERSION as string so that e.g. version 0.30 will print correctly.
  32. $APIVERSION = '1.8';
  33. $PACKAGE = 'automake';
  34. $VERSION = '1.8.5';
  35. $libdir = '/usr/share/automake-1.8';
  36.  
  37. 1;;
  38.  
  39. ### Setup "GNU" style for perl-mode and cperl-mode.
  40. ## Local Variables:
  41. ## perl-indent-level: 2
  42. ## perl-continued-statement-offset: 2
  43. ## perl-continued-brace-offset: 0
  44. ## perl-brace-offset: 0
  45. ## perl-brace-imaginary-offset: 0
  46. ## perl-label-offset: -2
  47. ## cperl-indent-level: 2
  48. ## cperl-brace-offset: 0
  49. ## cperl-continued-brace-offset: 0
  50. ## cperl-label-offset: -2
  51. ## cperl-extra-newline-before-brace: t
  52. ## cperl-merge-trailing-else: nil
  53. ## cperl-continued-statement-offset: 2
  54. ## End:
  55.